| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | module.exports = $ => { |
||
| 2 | const threadhold = 0 |
||
| 3 | const count = $('img:not([alt])').length |
||
| 4 | return count > threadhold |
||
| 5 | ? `There are ${count} <img> tag without alt attribute` |
||
| 6 | : null |
||
| 7 | } |
||
| 8 |